home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / ptools12.zip / WRDDEF.DFM / WRDDEF.txt
Text File  |  1996-04-04  |  9KB  |  384 lines

  1. object WordSelectDlg: TWordSelectDlg
  2.   Left = 198
  3.   Top = 265
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   ActiveControl = OKBtn
  7.   BorderIcons = [biSystemMenu]
  8.   BorderStyle = bsDialog
  9.   Caption = 'Word List Dialog'
  10.   ClientHeight = 432
  11.   ClientWidth = 360
  12.   Font.Color = clWindowText
  13.   Font.Height = -13
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   PixelsPerInch = 96
  17.   Position = poScreenCenter
  18.   Scaled = False
  19.   OnCreate = FormCreate
  20.   OnDestroy = FormDestroy
  21.   TextHeight = 16
  22.   object SrcLabel: TLabel
  23.     Left = 8
  24.     Top = 0
  25.     Width = 145
  26.     Height = 14
  27.     AutoSize = False
  28.     Caption = 'Text'
  29.     Font.Color = clBlack
  30.     Font.Height = -11
  31.     Font.Name = 'MS Sans Serif'
  32.     Font.Style = []
  33.     ParentFont = False
  34.     IsControl = True
  35.   end
  36.   object DstLabel: TLabel
  37.     Left = 209
  38.     Top = 0
  39.     Width = 145
  40.     Height = 15
  41.     AutoSize = False
  42.     Caption = 'Hot Words List:'
  43.     Font.Color = clBlack
  44.     Font.Height = -11
  45.     Font.Name = 'MS Sans Serif'
  46.     Font.Style = []
  47.     ParentFont = False
  48.     IsControl = True
  49.   end
  50.   object IncludeBtn: TSpeedButton
  51.     Left = 176
  52.     Top = 15
  53.     Width = 24
  54.     Height = 24
  55.     Hint = 'Include selection in list'
  56.     Caption = '>'
  57.     Font.Color = clBlack
  58.     Font.Height = -11
  59.     Font.Name = 'MS Sans Serif'
  60.     Font.Style = [fsBold]
  61.     ParentFont = False
  62.     ParentShowHint = False
  63.     ShowHint = True
  64.     OnClick = IncludeBtnClick
  65.     IsControl = True
  66.   end
  67.   object ExcludeBtn: TSpeedButton
  68.     Left = 176
  69.     Top = 47
  70.     Width = 24
  71.     Height = 24
  72.     Hint = 'Remove from the list'
  73.     Caption = '<'
  74.     Enabled = False
  75.     Font.Color = clBlack
  76.     Font.Height = -11
  77.     Font.Name = 'MS Sans Serif'
  78.     Font.Style = [fsBold]
  79.     ParentFont = False
  80.     ParentShowHint = False
  81.     ShowHint = True
  82.     OnClick = ExcludeBtnClick
  83.     IsControl = True
  84.   end
  85.   object ExcludeAllBtn: TSpeedButton
  86.     Left = 176
  87.     Top = 79
  88.     Width = 24
  89.     Height = 24
  90.     Hint = 'Remove from the list'
  91.     Caption = '<<'
  92.     Enabled = False
  93.     Font.Color = clBlack
  94.     Font.Height = -11
  95.     Font.Name = 'MS Sans Serif'
  96.     Font.Style = [fsBold]
  97.     ParentFont = False
  98.     ParentShowHint = False
  99.     ShowHint = True
  100.     IsControl = True
  101.   end
  102.   object OKBtn: TBitBtn
  103.     Left = 7
  104.     Top = 197
  105.     Width = 77
  106.     Height = 24
  107.     Hint = 'Accept changes'
  108.     Font.Color = clBlack
  109.     Font.Height = -11
  110.     Font.Name = 'MS Sans Serif'
  111.     Font.Style = [fsBold]
  112.     ParentFont = False
  113.     ParentShowHint = False
  114.     ShowHint = True
  115.     TabOrder = 2
  116.     OnClick = OKBtnClick
  117.     Kind = bkOK
  118.     Margin = 2
  119.     Style = bsNew
  120.     Spacing = -1
  121.     IsControl = True
  122.   end
  123.   object CancelBtn: TBitBtn
  124.     Left = 92
  125.     Top = 197
  126.     Width = 77
  127.     Height = 24
  128.     Hint = 'Cancel chanes'
  129.     Font.Color = clBlack
  130.     Font.Height = -11
  131.     Font.Name = 'MS Sans Serif'
  132.     Font.Style = [fsBold]
  133.     ParentFont = False
  134.     ParentShowHint = False
  135.     ShowHint = True
  136.     TabOrder = 3
  137.     OnClick = CancelBtnClick
  138.     Kind = bkCancel
  139.     Margin = 2
  140.     Style = bsNew
  141.     Spacing = -1
  142.     IsControl = True
  143.   end
  144.   object DstList: TListBox
  145.     Left = 209
  146.     Top = 15
  147.     Width = 144
  148.     Height = 178
  149.     Hint = 'List of selected Words'
  150.     Font.Color = clBlack
  151.     Font.Height = -13
  152.     Font.Name = 'MS Sans Serif'
  153.     Font.Style = []
  154.     ItemHeight = 16
  155.     ParentFont = False
  156.     ParentShowHint = False
  157.     ShowHint = True
  158.     TabOrder = 1
  159.     OnClick = DstListClick
  160.     IsControl = True
  161.   end
  162.   object SrcTxt: TMemo
  163.     Left = 8
  164.     Top = 15
  165.     Width = 161
  166.     Height = 178
  167.     Hint = 'Use mouse or cursor to select text'
  168.     Font.Color = clWindowText
  169.     Font.Height = -13
  170.     Font.Name = 'MS Sans Serif'
  171.     Font.Style = []
  172.     ParentFont = False
  173.     ParentShowHint = False
  174.     ReadOnly = True
  175.     ShowHint = True
  176.     TabOrder = 0
  177.   end
  178.   object GroupBox1: TGroupBox
  179.     Left = 9
  180.     Top = 230
  181.     Width = 344
  182.     Height = 195
  183.     Caption = 'Click Response'
  184.     Font.Color = clWindowText
  185.     Font.Height = -13
  186.     Font.Name = 'MS Sans Serif'
  187.     Font.Style = []
  188.     ParentFont = False
  189.     TabOrder = 5
  190.     object Panel2: TPanel
  191.       Left = 8
  192.       Top = 16
  193.       Width = 177
  194.       Height = 129
  195.       Caption = 'Panel2'
  196.       TabOrder = 0
  197.       object mDesc: TMemo
  198.         Left = 8
  199.         Top = 32
  200.         Width = 161
  201.         Height = 89
  202.         Hint = 'Description of the word'
  203.         Font.Color = clWindowText
  204.         Font.Height = -13
  205.         Font.Name = 'MS Sans Serif'
  206.         Font.Style = []
  207.         MaxLength = 254
  208.         ParentFont = False
  209.         ParentShowHint = False
  210.         ShowHint = True
  211.         TabOrder = 1
  212.         OnChange = mDescChange
  213.         OnClick = mDescClick
  214.       end
  215.       object rbDesc: TRadioButton
  216.         Left = 8
  217.         Top = 8
  218.         Width = 153
  219.         Height = 17
  220.         Caption = 'Show Description'
  221.         Checked = True
  222.         TabOrder = 0
  223.         TabStop = True
  224.         OnClick = rbDescClick
  225.       end
  226.     end
  227.     object Panel1: TPanel
  228.       Left = 196
  229.       Top = 16
  230.       Width = 131
  231.       Height = 51
  232.       TabOrder = 1
  233.       object cbFrameList: TComboBox
  234.         Left = 8
  235.         Top = 19
  236.         Width = 113
  237.         Height = 24
  238.         Hint = 'List of available frames'
  239.         Style = csDropDownList
  240.         ItemHeight = 16
  241.         ParentShowHint = False
  242.         ShowHint = True
  243.         TabOrder = 1
  244.         OnClick = cbFrameListClick
  245.       end
  246.       object rbFrame: TRadioButton
  247.         Left = 8
  248.         Top = 1
  249.         Width = 105
  250.         Height = 17
  251.         Caption = 'Show a Frame'
  252.         TabOrder = 0
  253.         OnClick = rbFrameClick
  254.       end
  255.     end
  256.     object Panel3: TPanel
  257.       Left = 196
  258.       Top = 69
  259.       Width = 131
  260.       Height = 50
  261.       TabOrder = 2
  262.       object cbWaveList: TComboBox
  263.         Left = 8
  264.         Top = 19
  265.         Width = 113
  266.         Height = 24
  267.         Hint = 'List of available waves'
  268.         Style = csDropDownList
  269.         ItemHeight = 16
  270.         ParentShowHint = False
  271.         ShowHint = True
  272.         TabOrder = 1
  273.         OnClick = cbWaveListClick
  274.       end
  275.       object rbWaves: TRadioButton
  276.         Left = 8
  277.         Top = 1
  278.         Width = 89
  279.         Height = 17
  280.         Caption = 'Play Audio'
  281.         TabOrder = 0
  282.         OnClick = rbWavesClick
  283.       end
  284.     end
  285.     object Panel4: TPanel
  286.       Left = 196
  287.       Top = 121
  288.       Width = 131
  289.       Height = 25
  290.       TabOrder = 3
  291.       object rbClose: TRadioButton
  292.         Left = 8
  293.         Top = 4
  294.         Width = 57
  295.         Height = 17
  296.         Caption = 'Close'
  297.         TabOrder = 0
  298.         OnClick = rbCloseClick
  299.       end
  300.     end
  301.     object Panel5: TPanel
  302.       Left = 8
  303.       Top = 152
  304.       Width = 321
  305.       Height = 35
  306.       TabOrder = 4
  307.       object SpeedButton1: TSpeedButton
  308.         Left = 293
  309.         Top = 5
  310.         Width = 20
  311.         Height = 24
  312.         Caption = '...'
  313.         Font.Color = clWindowText
  314.         Font.Height = -13
  315.         Font.Name = 'Times New Roman'
  316.         Font.Style = [fsBold]
  317.         ParentFont = False
  318.         OnClick = SpeedButton1Click
  319.       end
  320.       object txFileName: TEdit
  321.         Left = 128
  322.         Top = 5
  323.         Width = 158
  324.         Height = 24
  325.         TabOrder = 0
  326.         OnChange = txFileNameChange
  327.       end
  328.       object rbExecute: TRadioButton
  329.         Left = 8
  330.         Top = 8
  331.         Width = 113
  332.         Height = 17
  333.         Caption = 'Run Program'
  334.         TabOrder = 1
  335.         OnClick = rbExecuteClick
  336.       end
  337.     end
  338.   end
  339.   object bbExtender: TBitBtn
  340.     Left = 208
  341.     Top = 197
  342.     Width = 144
  343.     Height = 24
  344.     Hint = 'Define an action'
  345.     Caption = 'Open Actions'
  346.     Default = True
  347.     Font.Color = clBlack
  348.     Font.Height = -11
  349.     Font.Name = 'MS Sans Serif'
  350.     Font.Style = [fsBold]
  351.     ParentFont = False
  352.     ParentShowHint = False
  353.     ShowHint = True
  354.     TabOrder = 4
  355.     OnClick = bbExtenderClick
  356.     Glyph.Data = {
  357.       78010000424D7801000000000000760000002800000020000000100000000100
  358.       04000000000000000000120B0000120B00000000000000000000000000000000
  359.       800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  360.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333393333
  361.       333333333337F3333333333333397333333333333337FF333333333333C94333
  362.       3333333333737F333333333333C9473333333333337373F3333333333CC94433
  363.       3333333337F7F7F3333333333CC94473333333333737F73F33333333CCC94443
  364.       333333337F37F37F33333333CCC94447333333337337F373F333333CCCC94444
  365.       33333337F337F337F333333CCCC94444733333373337F3373F3333CCCCC94444
  366.       4333337F3337FF337F3333CCCCC94444473333733F7773FF73F33CCCCC393444
  367.       443337F37737F773F7F33CCC33393374447337F73337F33737FFCCC333393333
  368.       444377733337F333777FC33333393333374373333337333333730000}
  369.     Layout = blGlyphRight
  370.     Margin = 2
  371.     NumGlyphs = 2
  372.     Style = bsNew
  373.     Spacing = -1
  374.     IsControl = True
  375.   end
  376.   object OpenDialog1: TOpenDialog
  377.     DefaultExt = 'EXE'
  378.     Filter = '*.exe;*.bat|*.EXE;*.BAT|*.exe|*.EXE|*.bat|*.BAT'
  379.     Options = [ofReadOnly, ofHideReadOnly, ofFileMustExist]
  380.     Left = 176
  381.     Top = 120
  382.   end
  383. end
  384.